home *** CD-ROM | disk | FTP | other *** search
/ Electronic Clipper 1998 April / Electronic Clipper 1998-04.iso / Idea Source® / Bites.Dir / 00049_Script_49 < prev    next >
Text File  |  1998-02-19  |  372b  |  18 lines

  1. on exitFrame
  2.   if soundbusy(1) then go the frame
  3.   else go the frame + 1
  4.   
  5.     repeat with n=13 to 17
  6.     if rollover(n) then
  7.       set the visible of sprite n to false
  8.       updatestage
  9.     end if
  10.   end repeat
  11.   
  12.   repeat with n=13 to 17
  13.     if not rollover(n) then
  14.       set the visible of sprite n to true
  15.       updatestage
  16.     end if
  17.   end repeat
  18. end